time.Time.unixSec (method)

13 uses

	time (current package)
		format.go#L1392: 		name, offset, _, _, _ := local.lookup(t.unixSec())
		format.go#L1408: 		offset, ok := local.lookupName(zoneName, t.unixSec())
		format_rfc3339.go#L146: 		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
		time.go#L188: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
		time.go#L477: 	sec := t.unixSec()
		time.go#L497: 	sec := t.unixSec()
		time.go#L1213: 	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
		time.go#L1223: 	_, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
		time.go#L1242: 	return t.unixSec()
		time.go#L1251: 	return t.unixSec()*1e3 + int64(t.nsec())/1e6
		time.go#L1260: 	return t.unixSec()*1e6 + int64(t.nsec())/1e3
		time.go#L1270: 	return (t.unixSec())*1e9 + int64(t.nsec())
		time.go#L1365: 	} else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {